home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-07-03 | 465 b | 21 lines |
- #
- # Top-level Makefile for MandelSpawn
- #
- # Some of the subdirectory Makefiles may need editing.
- # Read the INSTALL file for instructions.
- #
-
- DESTDIR=/usr/skunk
-
- all install:
- (cd lib; $(MAKE))
- (cd mslaved; $(MAKE) $@ DESTDIR=$(DESTDIR))
- (cd bms; $(MAKE))
- (cd xms; xmkmf; $(MAKE) includes; $(MAKE) depend; $(MAKE) $@ DESTDIR=$(DESTDIR))
-
- clean:
- (cd lib; $(MAKE) spotless)
- (cd mslaved; $(MAKE) spotless)
- (cd bms; $(MAKE) spotless)
- (cd xms; xmkmf; $(MAKE) $@)
-